3f754fa894d26f2d3f12a859c10c89af8fefd496,tests/it.xsemantics.dsl.tests/xsemantics-gen/it/xsemantics/test/fj/first/FjFirstTypeSystem.java,FjFirstTypeSystem,_applyRuleTBoolConstant_1,#RuleEnvironment#BoolConstant#,927
Before Change
return _xblockexpression;
}
};
BasicType _createBasicType = FjFactory.eINSTANCE.createBasicType();
BasicType _apply = _function.apply(_createBasicType);
return _apply;
}
After Change
return _xblockexpression;
}
};
BasicType _apply = _function.apply(FjFactory.eINSTANCE.createBasicType());
return _apply;
}